﻿/*========================== sidebar ==========================*/
.sidebar-wrapper {
    position: relative;
    height: 100%;
    overflow: auto;
    display: none;
    font-size: 16px;
}
#sidebar {
    background: #333;
}
#sidebar .nav {
    margin-top: 80px;
    line-height: 60px;
    list-style-type: none;
}
#sidebar .nav a {
    display: block;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
}
#sidebar .nav a:hover {
    background: #000;
}
[data-simplersidebar='active'] {
    box-shadow: 3px 0 3px 0 rgba(0, 0, 0, 0.5);
}
/*========================== header ==========================*/
.header {
    height: 92px;
    background: #fff;
    -moz-box-shadow: 3px 3px 5px #ccc;
    -webkit-box-shadow: 3px 3px 5px #ccc;
    box-shadow: 3px 3px 5px #ccc;
}
.header .container {
    max-width: 1230px;
    height: 100%;
    padding: 0 15px;
}
.header .sidebar-toggle {
    height: 30px;
    width: 30px;
    background: url("../images/menu.png") no-repeat center center;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
}
.header__logo {
    display: inline-block;
    width: 250px;
    height: 92px;
    line-height: 92px;
}
.header__logo img {
    /*width: 100%;*/
    max-height: 55px;
    vertical-align: middle;
}
.header__nav {
    float: right;
    height: 52px;
    margin-right: 50px;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    color: #535353;
    overflow: hidden;
}
.header__nav li {
    float: left;
    display: inline-block;
    cursor: pointer;
    margin-right: 30px;
}
.header__nav li a {
    display: block;
    height: 52px;
    line-height: 52px;
    width: 75px;
    text-align: center;
}
.header__nav li.on a, .header__nav li:hover a {
    color: #424242;
    border-bottom: 4px solid #424242;
}
.header__lang {
    display: inline-block;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.header__lang .drop-btn {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #858585;
    cursor: pointer;
}
.header__lang .drop-btn .icon-arrow {
    display: inline-block;
    width: 15px;
    height: 10px;
    margin-left: 8px;
    background: url("../images/angle-down.png") no-repeat center center;
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.header__lang .drop-menu {
    display: none;
    position: absolute;
    top: 30px;
    right: -15px;
    z-index: 1000;
    width: 140px;
    height: 80px;
    border: 1px solid #dcdcdc;
    font-size: 12px;
    color: #858585;
    background: rgba(255, 255, 255, .8);
}
.header__lang .drop-menu li a {
    display: block;
    height: 38.5px;
    line-height: 38.5px;
    text-align: center;
}
.header__lang .drop-menu li a:hover {
    color: #333;
}
.header__lang .drop-menu li.divider {
    height: 1px;
    width: 85%;
    margin: auto;
    background: rgba(232, 232, 232, .5);
}
.header__lang:hover .drop-btn .icon-arrow {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.header__lang:hover .drop-menu {
    display: block;
}
@media (max-width: 1199px) {
    .header__logo {
        width: 220px;
    }
    .header__nav li {
        margin-right: 15px;
    }
}
@media (max-width: 991px) {
    .header__logo {
        width: 160px;
    }
    .header__nav li {
        margin-right: 0;
    }
    .header__nav li a {
        width: 70px;
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .header {
        height: 72px;
        text-align: center;
    }
    .header__logo {
        height: 72px;
        line-height: 72px;
    }
}
/*========================== banner ==========================*/
.banner {
    border-bottom: 1px solid #d9d9d9;
}
.banner img {
    width: 100%;
}
.banner .swiper-container {
    padding-bottom: 90px;
}
.banner .swiper-pagination {
    bottom: 38px;

}
.banner .swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    border-radius: 0;
    background: #ccc;
    opacity: 1;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.banner .swiper-pagination-bullet-active {
    background: #424242;
}
.banner .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 15px;
}
@media (max-width: 991px) {
    .banner .swiper-container {
        padding-bottom: 70px;
    }
    .banner .swiper-pagination {
        bottom: 28px;
    }
    .banner .swiper-pagination-bullet {
        width: 55px;
    }
    .banner .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 12px;
    }
}
@media (max-width: 767px) {
    .banner .swiper-container {
        padding-bottom: 50px;
    }
    .banner .swiper-pagination {
        bottom: 18px;
    }
    .banner .swiper-pagination-bullet {
        width: 50px;
    }
    .banner .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 10px;
    }
}
@media (max-width: 575px) {
    .banner .swiper-container {
        padding-bottom: 40px;
    }
    .banner .swiper-pagination {
        bottom: 13px;
    }
    .banner .swiper-pagination-bullet {
        width: 45px;
    }
    .banner .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 8px;
    }
}
/*========================== index_about ==========================*/
.index_about {
    padding-top: 90px;
    padding-bottom: 160px;
    background: url("../images/index-about-bg.png") no-repeat center bottom;
}
.index_about .container {
    max-width: 1300px;
    padding: 0 15px;
}
.index_about .text-box {
    width: 575px;
    margin-right: 35px;
}
.htitle1 h3 {font-family: 微软雅黑;
    font-size: 32px;
    color: #595656;
    margin-bottom: 10px;
	font-weight:bold;
}
.htitle1 p {
    font-size: 20px;
    color: #4c4c4c;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
.index_about .text-box .text {
    font-size: 14px;
    line-height: 2;
    text-align: justify;
    color: #4d4d4d;
    margin: 35px 0;
}
.link-btn1 {
    display: block;
    width: 185px;
    height: 55px;
    line-height: 55px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    color: #666;
    background: #f5f5f5;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
.index_about .pic-box {
    width: 573px;
    text-align: center;
}
.index_about .pic-box img {
    width: 100%;
    height: auto;
}
@media (max-width: 1299px) {
    .index_about .container {
        max-width: 1200px;
    }
    .index_about .text-box {
        width: 560px;
        margin-right:0;
    }
    .index_about .pic-box {
        width: 560px;
    }

}
@media (max-width: 1199px) {
    .index_about .container {
        max-width: 990px;
    }
    .index_about .text-box {
        width: 450px;
    }
    .index_about .text-box .text {
        margin: 15px 0;
    }
    .index_about .pic-box {
        width: 450px;
    }
}
@media (max-width: 991px) {
    .index_about .container {
        max-width: 750px;
    }
    .index_about .text-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .htitle1 {
        text-align: center;
    }
    .htitle1 h3 {
        font-size: 32px;
        margin-bottom: 5px;
    }
    .htitle1 p {
        font-size: 20px;
    }
    .link-btn1 {
        margin: auto;
    }
    .index_about .pic-box {
        width: 100%;
    }
    .index_about .pic-box img {
        width: auto;
        max-width: 100%;
    }
}
@media (max-width: 767px) {
    .index_about {
        padding-top: 50px;
        padding-bottom: 130px;
    }
    .htitle1 h3 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .htitle1 p {
        font-size: 18px;
    }
    .link-btn1 {
        width: 150px;
        height: 45px;
        line-height: 45px;
    }
}
/*========================== index_pro ==========================*/
.index_pro {
    padding: 100px 0 65px;
}
.index_pro .container {
    max-width: 100%;
    padding: 0 25px;
}
.htitle2 {
    text-align: center;
}
.htitle2 h3 {font-family: 微软雅黑;
    font-size: 32px;
    color: #4c4c4c;
    margin-bottom: 5px;
	font-weight:bold;
}
.htitle2 p {
    font-size: 20px;
    color: #4c4c4c;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
.index_pro__swiper {
    margin-top: 55px;
}
.index_pro__swiper .swiper-container {
    padding-bottom: 70px;
}
.index_pro__swiper .swiper-pagination {
    bottom: 0;
}
.index_pro__swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #c9c9c9;
    opacity: 1;
}
.index_pro__swiper .swiper-pagination-bullet-active {
    background: #424242;
}
.index_pro__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}





.index_pro__swiper .item-box {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: auto;
}
.index_pro__swiper .item-box .img-box2 {
    width: 100%;
    /*height: 220px;*/
    height: 300px;
    overflow: hidden;
}
.index_pro__swiper .item-box .img-box2 img {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.index_pro__swiper .item-box .caption {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    text-align: center;
    color: #5b5b5b;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.index_pro__swiper .item-box:hover .img-box2 img {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
.index_pro__swiper .item-box:hover {
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1640px) {
    .index_pro__swiper .item-box .img-box2 {
        height: 255px;
    }
}
@media (max-width: 1440px) {
    .index_pro__swiper .item-box .img-box2 {
        height: 225px;
    }
}
@media (max-width: 1399px) {
    .index_pro .container {
        max-width: 1200px;
    }
    .index_pro__swiper .item-box .img-box2 {
        height: 182px;
    }
}
@media (max-width: 1199px) {
    .index_pro .container {
        max-width: 992px;
    }
    .index_pro__swiper .item-box .img-box2 {
        height: 200px;
    }
}
@media (max-width: 991px) {
    .index_pro .container {
        max-width: 768px;
    }
    .htitle2 h3 {
        font-size: 32px;
    }
    .htitle2 p {
        font-size: 20px;
    }
    .index_pro__swiper .item-box .img-box2 {
        height: 235px;
    }
}
@media (max-width: 767px) {
    .index_pro {
        padding: 60px 0;
    }
    .index_pro .container {
        max-width: 576px;
    }
    .htitle2 h3 {
        font-size: 28px;
        margin-bottom: 0;
    }
    .htitle2 p {
        font-size: 18px;
    }
    .index_pro__swiper {
        margin-top: 40px;
    }
    .index_pro__swiper .swiper-container {
        padding-bottom: 40px;
    }
    .index_pro__swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .index_pro__swiper .item-box .img-box2 {
        height: 175px;
    }
    .index_pro__swiper .item-box .caption {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .index_pro__swiper .item-box .img-box2 {
        height: 245px;
    }
    .index_pro__swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .index_pro__swiper .item-box .caption {
        height: 40px;
        line-height: 40px;
    }
}
@media (max-width: 400px) {
    .index_pro__swiper .item-box .img-box2 {
        height: 217px;
    }
}
@media (max-width: 350px) {
    .index_pro__swiper .item-box .img-box2 {
        height: 180px;
    }
}
/*========================== index_case ==========================*/
.index_case {
    background: #f4f4f4;
    padding: 50px 0;
}
.index_case .container {
    overflow: hidden;
}
.case__list {
    text-align: center;
    margin-top: 42px;
    margin-left: -7.5px;
    margin-right: -7.5px;
}
.case__list .item-box {
    display: inline-block;
    width: 390px;
    margin-bottom: 25px;
}
.case__list .item-box .img-box {
    width: 100%;
    position: relative;
}
.case__list .item-box .img-box div {
    height: 250px;
}
.case__list .item-box .img-box .mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .55) url("../images/search.png") no-repeat center center;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.case__list .item-box .caption {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    text-align: center;
    color: #4c4c4c;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.case__list .item-box:hover {
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.case__list .item-box:hover .img-box .mask {
    opacity: 1;
    filter: alpha(opacity=100);
}
.case__list .item-box:hover .caption {
    color: #2d2d2d;
}
.link-btn2 {
    display: block;
    width: 265px;
    height: 60px;
    border: 1px solid #d9d9d9;
    margin: 15px auto;
    border-radius: 4px;
    font-size: 14px;
    line-height: 60px;
    text-align: center;
    color: #666;
    background: #f5f5f5;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
@media (max-width: 1199px) {
    .case__list {
        margin-left: 0;
        margin-right: 0;
    }
    .case__list .item-box {
        width: 300px;
    }
    .case__list .item-box .img-box div {
        height: 192px;
    }
}
@media (max-width: 991px) {
    .case__list .item-box {
        width: 350px;
    }
    .case__list .item-box .img-box div {
        height: 224px;
    }
}
@media (max-width: 767px) {
    .case__list .item-box {
        width: 250px;
    }
    .case__list .item-box .img-box div {
        height:160px;
    }
    .case__list .item-box .caption {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
    .link-btn2 {
        width: 220px;
        height: 50px;
        line-height: 50px;
    }
}
@media (max-width: 575px) {
    .index_case .container {
        padding: 0 10px;
    }
    .case__list .item-box {
        width:  94%;
    }
    .case__list .item-box .img-box div {
        height: 120px;
    }
    .case__list .item-box .img-box .mask {
        -webkit-background-size: 25px 25px;
        background-size: 25px 25px;
    }
    .case__list .item-box .caption {
        height: 40px;
        line-height: 40px;
    }
    .link-btn2 {
        width: 200px;
        height: 45px;
        line-height: 45px;
    }
}
@media (max-width: 400px) {
    .case__list .item-box .img-box div {
        height: 106px;
    }
}
@media (max-width: 370px) {
    .case__list .item-box .img-box div {
        height: 90px;
    }
}
/*========================== index_news ==========================*/
.index_news {
    padding-top: 60px;
    padding-bottom: 50px;
}
.index_news .container {
    max-width: 1245px;
}
.index_news__list {
    margin-top: 45px;
}
.index_news__list .item-box {
    display: block;
    width: 375px;
    margin: 0 auto 25px;
}
.index_news__list .item-box .img-box {
    width: 100%;
    overflow: hidden;
}
.index_news__list .item-box .img-box div {
    height: 195px;
}
.index_news__list .item-box .text-box {
    width: 100%;
    height: 130px;
    padding: 12px 0;
}
.index_news__list .item-box .text-box .title {
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #494949;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.index_news__list .item-box .text-box .text {
    height: 56px;
    font-size: 14px;
    line-height: 28px;
    color: #898989;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-top: 10px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.index_news__list .item-box .meta-box {
    height: 51px;
    border-top: 1px solid #e6e6e6;
    font-size: 15px;
    line-height: 50px;
    font-family: Arial, Helvetica, sans-serif;
    color: #717171;
    position: relative;
}
.index_news__list .item-box .meta-box .time {
    display: inline-block;
    padding-left: 25px;
    background: url("../images/time.png") no-repeat left center;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
.index_news__list .item-box .meta-box .more {
    display: inline-block;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
.index_news__list .item-box .meta-box:before {
    content: "";
    height: 1px;
    width: 0;
    background: #424242;
    position: absolute;
    bottom: 100%;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.index_news__list .item-box:hover .text-box .title {
    color: #3d3d3d;
}
.index_news__list .item-box:hover .text-box .text {
    margin-top: 5px;
}
.index_news__list .item-box:hover .meta-box:before {
    width: 100%;
}
@media (max-width: 1199px) {
    .index_news .container {
        max-width: 960px;
    }
    .index_news__list .item-box {
        width: 300px;
    }
    .index_news__list .item-box .img-box div {
        height: 156px;
    }
}
@media (max-width: 991px) {
    .index_news .container {
        max-width: 750px;
    }
    .index_news__list .item-box {
        width: 350px;
    }
    .index_news__list .item-box .img-box div {
        height: 182px;
    }
}
@media (max-width: 767px) {
    .index_news .container {
        max-width: 540px;
    }
    .index_news__list .item-box {
        width: 100%;
        max-width: 375px;
    }
    .index_news__list .item-box .img-box div {
        height: auto;
    }
}
@media (max-width: 575px) {
    .index_news .container {
        padding: 0 15px;
    }
}
/*========================== index_contact ==========================*/
.index_contact {
    background: #2f2f2f;
    padding: 40px 15px;
}
.index_contact__way {
    width: 350px;
}
.index_contact__way .name {
    font-size: 16px;
    line-height: 28px;
    color: #d9d9d9;
}
.index_contact__way .shareBar {
    margin: 10px 0;
}
.index_contact__way .shareBar .bdsharebuttonbox a {
    border-radius: 50%;
}
.index_contact__way .shareBar .bdsharebuttonbox a.bds_tsina {
    background: url("../images/share-weibo.png") no-repeat center center;
}
.index_contact__way .shareBar .bdsharebuttonbox a.bds_sqq {
    background: url("../images/share-qq.png") no-repeat center center;
}
.index_contact__way .shareBar .bdsharebuttonbox a.bds_weixin {
    background: url("../images/share-weixin.png") no-repeat center center;
}
.index_contact__way .info {
    font-size: 13px;
    line-height: 28px;
    color: #a9a9a9;
}
.index_contact__message .message-form .form-group {
    font-size: 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -moz-text-size-adjust: none;
}
.index_contact__message .message-form .textInput {
    width: 215px;
    height: 35px;
    line-height: 35px;
    border: none;
    border-bottom: 1px solid #4a4a4a;
    background: none;
    font-size: 14px;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 15px;
}
.index_contact__message .message-form .textInput:last-of-type {
    margin-right: 0;
}
.index_contact__message .message-form textarea {
    width: 100%;
    height: 100px;
    border: none;
    border-bottom: 1px solid #4a4a4a;
    background: none;
    font-size: 14px;
    color: #fff;
    margin-bottom: 15px;
}
.index_contact__message .message-form .submitBtn {
    width: 157px;
    height: 42px;
    line-height: 42px;
    border: 1px solid #777;
    background: none;
    font-size: 14px;
    color: #d9d9d9;
    text-align: center;
    cursor: pointer;
    margin-bottom: 15px;
}
.index_contact__message :focus::-webkit-input-placeholder {
    color: #fff;
}
.index_contact__message :focus::-moz-placeholder {
    color: #fff;
}
.index_contact__message :focus:-ms-input-placeholder {
    color: #fff;
}
.index_contact__message .message-form .submitBtn:hover {
    color: #fff;
    background: #777;
}
@media (max-width: 1199px) {
    .index_contact__message .message-form .textInput {
        width: 170px;
    }
}
@media (max-width: 991px) {
    .index_contact__way {
        width: 300px;
    }
    .index_contact__message .message-form .textInput {
        width: 120px;
    }
}
@media (max-width: 767px) {
    .index_contact__way {
        width: 100%;
        margin-bottom: 40px;
    }
    .index_contact__message .message-form .textInput {
        width: 30%;
        margin-right:5% ;
    }
}
@media (max-width: 575px) {
    .index_contact__content {
        padding: 0 10px;
    }
    .index_contact__message .message-form .textInput {
        width: 100%;
        margin-right: 0;
    }
    .index_contact__message .message-form .form-btn-group {
        text-align: center;
    }
}
/*========================== footer ==========================*/
.footer {
    padding: 16px 15px;
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #a6a6a6;
    background: #2a2a2a;
}
.footer a:hover {
    color: #fff;
}
/*========================== case ==========================*/
.other-banner img {
    width: 100%;
}
/*========================== other-banner ==========================*/
.case {
    padding-top: 45px;
    padding-bottom: 40px;
}
.htitle3 {
    text-align: center;
	font-weight:bold;
}
.htitle3 h3 {font-family: 微软雅黑;
    font-size: 30px;
    color: #4c4c4c;
    margin-bottom: 4px;
}
.htitle3 p {
    font-size: 20px;
    color: #4d4d4d;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
}
@media (max-width: 991px) {
    .htitle3 h3 {
        font-size: 26px;
    }
    .htitle3 p {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .htitle3 h3 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .htitle3 p {
        font-size: 18px;
    }
}
/*========================== pages ==========================*/
.pages {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #aeaeae;
    padding: 22px 0;
}
.pages a {
    display: inline-block;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    color: #fff;
    background: #b5b5b5;
    vertical-align: bottom;
    margin: 4px 2px;
}
.pages a.on, .pages a:hover {
    background: #595656;
}
@media (max-width: 767px) {
    .pages a {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}
/*========================== about ==========================*/
.about {
    padding-top: 70px;
    padding-bottom: 50px;
}
.about__content {
    margin-top: 20px;
}
.about__list {
    padding: 20px 0;
}
.about__list .text-box {
    width: 580px;
    font-size: 15px;
    line-height: 2;
    color: #7e7e7e;
    text-align: left;
}
.about__list .pic-box {
    width: 580px;
    text-align: center;
}
.about__list .pic-box img {
    width: 100%;
    height: auto;
}
@media (max-width: 1199px) {
    .about__list .text-box {
        width: 460px;
        font-size: 14px;
    }
    .about__list .pic-box {
        width: 460px;
    }
}
@media (max-width: 991px) {
    .about__list .text-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .about__list .pic-box {
        width: 100%;
    }
    .about__list .pic-box img {
        width: auto;
        max-width: 100%;
    }

}
@media (max-width: 575px) {
    .about {
        padding: 60px 15px 40px 15px;
    }
}
/*========================== culture ==========================*/
.culture {
    padding: 50px 0;
    background: url("../images/culture-bg.png") no-repeat center bottom;
}
.culture__list {
    text-align: center;
    margin-top: 50px;
}
.culture__list .item-box {
    display: inline-block;
    width: 250px;
}
.culture__list .item-box .img-box {
    width: 155px;
    margin: 30px auto;
}
.culture__list .item-box .img-box div {
    height: 155px;
}
.culture__list .item-box .text-box {
    height: 120px;
    color: #6c6c6c;
    font-size: 14px;
}
.culture__list .item-box .text-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3c3c3c;
}
@media (max-width: 1199px) {
    .culture__list .item-box {
        width: 220px;
    }
}
@media (max-width: 991px) {
    .culture__list .item-box {
        width: 165px;
    }
    .culture__list .item-box .text-box {
        font-size: 13px;
    }
    .culture__list .item-box .text-box h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
}
@media (max-width: 767px) {
    .culture__list .item-box .img-box {
        margin: 15px auto;
    }
    .culture__list .item-box {
        width: 220px;
    }
}
@media (max-width: 575px) {
    .culture {
        padding: 40px 0;
    }
    .culture__list {
        margin-top: 30px;
    }
    .culture__list .item-box .img-box {
        margin: 10px auto;
        width: 125px;
    }
    .culture__list .item-box .img-box div {
        height: 125px;
    }
    .culture__list .item-box .text-box {
        height: auto;
        margin-bottom: 20px;
    }
}
/*========================== contact ==========================*/
.contact {
    padding: 40px 0;
}
.contact__content {
    margin-top: 55px;
}
.contact__info {
    width: 370px;
}
.contact__info .item-box {
    min-height: 64px;
    padding-left: 85px;
    margin-bottom: 55px;
    position: relative;
    font-size: 14px;
    color: #919191;
}
.contact__info .item-box:last-child {
    margin-bottom: 0;
}
.contact__info .item-box .icon {
    height: 64px;
    width: 64px;
    position: absolute;
    left: 0;
    top: 0;
}
.contact__info .item-box h4 {
    font-size: 20px;
    color: #565656;
    margin-bottom: 4px;
}
.contact__info .item-box a:hover {
    color: #4d4d4d;
}
.contact__map {
    width: 800px;
    height: 420px;
    max-height: 420px;
    overflow: hidden;
}
.contact__map img {
    width: 100%;
    height: auto;
}
@media (max-width: 1199px) {
    .contact__info {
        width: 320px;
    }
    .contact__info .item-box {
        margin-bottom: 20px;
    }
    .contact__map {
        width: 600px;
        height: 320px;
    }
}
@media (max-width: 991px) {
    .contact .container {
        padding: 0 15px;
    }
    .contact__info {
        width: 100%;
        padding: 0 40px;
        margin-bottom: 40px;
    }
    .contact__info .item-box h4 {
        font-size: 18px;
    }
    .contact__map {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 767px) {
    .contact__content {
        margin-top: 35px;
    }
    .contact__info .item-box {
        min-height: 55px;
        padding-left: 75px;
    }
    .contact__info .item-box .icon {
        height: 55px;
        width: 55px;
    }
    .contact__info .item-box h4 {
        font-size: 16px;
    }
}
/*========================== messages ==========================*/
.messages {
    padding: 40px 0;
}
.messages__content {
    margin-top: 40px;
}
.messages__form .form-group {
    font-size: 0;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
}
.messages__form .form-group .textInput {
    width: 32%;
    height: 55px;
    border: 1px solid #b5b5b5;
    margin-right: 2%;
    font-size: 16px;
    text-indent: 1.5em;
    color: #000;
    margin-bottom: 20px;
}
.messages__form .form-group .textInput:last-child {
    margin-right: 0;
}
.messages__form .form-group textarea {
    width: 100%;
    height: 220px;
    padding: 1em 1.5em;
    border: 1px solid #b5b5b5;
    margin-bottom: 20px;
    font-size: 16px;
    color: #000;
}
.messages__form .form-btn-group .submitBtn {
    display: block;
    width: 275px;
    height: 55px;
    line-height: 55px;
    border: none;
    margin: 20px auto;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #4f4f4f;
    cursor: pointer;
}
@media (max-width: 991px) {
    .messages .container {
        padding: 0 15px;
    }
    .messages__form .form-btn-group .submitBtn {
        width: 260px;
    }
}
@media (max-width: 767px) {
    .messages__form .form-group .textInput {
        width: 100%;
        height: 50px;
        margin-right: 0;
        font-size: 14px;
    }
    .messages__form .form-group textarea {
        font-size: 14px;
    }
    .messages__form .form-btn-group .submitBtn {
        width: 240px;
        height: 50px;
        font-size: 14px;
    }
}
/*========================== join ==========================*/
.join_advantage {
    padding-top: 50px;
    padding-bottom: 30px;
}
.join_advantage__content {
    text-align: center;
}
.join_advantage__content .item-text {
    display: inline-block;
    width: 78%;
    height: auto;
    margin-bottom: 20px;
}
.join_advantage__content .item-img {
    display: inline-block;
    width: 90%;
    height: auto;
    margin-bottom: 20px;
}
.join_advantage__content .item-table {
    display: inline-block;
    width: 88.5%;
    height: auto;
    margin: 20px 0;
}
.join_advantage__content img {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {
    .join_advantage__content .item-text {
        width: 100%;
    }
    .join_advantage__content .item-img {
        width: 100%;
    }
    .join_advantage__content .item-table {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .join_advantage__content {
        padding: 0 15px;
    }
}
.join_condition {
    background: #3e3e3e;
    padding: 60px 15px 90px 15px;
}
.htitle4 {
    text-align: center;
}
.htitle4 h3 {font-family: 微软雅黑;
    font-size: 30px;
    color: #fff;
    margin-bottom: 4px;
}
.htitle4 p {
    font-size: 24px;
    color: #fcfcfc;
}
.join_condition__content {
    margin-top: 80px;
}
.join_condition__content .pic-box {
    width: 552px;
    margin-left: -12px;
}
.join_condition__content .pic-box img {
    width: 100%;
    height: auto;
}
.join_condition__content .text-box {
    font-size: 14px;
    line-height: 2;
    color: #d0d0d0;
}
@media (max-width: 1199px) {
    .join_condition__content .pic-box {
        width: 425px;
        margin-left: 0;
    }
    .join_condition__content .text-box {
        line-height: 1.5;
    }
}
@media (max-width: 991px) {
    .htitle4 h3 {
        font-size: 26px;
    }
    .htitle4 p {
        font-size: 20px;
    }
    .join_condition__content {
        padding: 0 20px;
        margin-top: 60px;
    }
    .join_condition__content .pic-box {
        width: 100%;
        text-align: center;
    }
    .join_condition__content .pic-box img {
        width: auto;
        max-width: 100%;
    }
    .join_condition__content .text-box {
        margin-top: 30px;
    }
}
@media (max-width: 767px) {
    .join_condition {
        background: #3e3e3e;
        padding: 40px 15px 60px 15px;
    }
    .join_condition__content {
        margin-top: 40px;
    }
    .htitle4 h3 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .htitle4 p {
        font-size: 18px;
    }
}
/*========================== news ==========================*/
.news {
    padding: 45px 15px 35px 15px;
}
.news__nav {
    text-align: center;
    font-size: 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    margin-top: 40px;
    margin-bottom: 10px;
}
.news__nav a {
    display: inline-block;
    min-width: 125px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #d2d2d2;
    font-size: 14px;
    color: #616161;
    text-align: center;
    margin:4px;
}
.news__nav a:first-child {
    min-width: 115px;
}
.news__nav a.on, .news__nav a:hover {
    color: #fff;
    background: #606060;
    border-color: #606060;
}
.news__list {
    margin-bottom: 20px;
}
.news__list .item-box {
    padding: 40px 0;
    border-bottom: 1px solid #e2e2e2;
}
.news__list .item-box .img-box {
    width: 410px;
    float: left;
}
.news__list .item-box .img-box div {
    height: 252px;
}
.news__list .item-box .text-box {
    width: 680px;
    float: right;
    margin-right: 60px;
    padding-top: 10px;
}
.news__list .item-box .text-box .title {
    font-size: 20px;
    color: #666;
    margin-bottom: 8px;
}
.news__list .item-box .text-box .time {
    font-size: 16px;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
    color: #959595;
}
.news__list .item-box .text-box .text {
    font-size: 14px;
    line-height: 2;
    color: #7d7d7d;
    margin: 20px 0;
}
.news__list .item-box .text-box .more {
    display: inline-block;
    width: 140px;
    height: 45px;
    line-height: 45px;
    margin-top: 12px;
    border: 1px solid #c5c5c5;
	font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
	font-weight: 300;
    font-size: 14px;
    color: #6f6f6f;
    text-align: center;
}
.news__list .item-box > a:hover .text-box .more {
    background: #606060;
    border-color: #606060;
    color: #fff;
}
.news__list .item-box > a:hover .text-box .more:after {
    content: ">";
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    margin-left: 10px;
}
.news__list .item-box > a:hover .text-box .title {
    color: #3d3d3d;
}
@media (max-width: 1199px) {
    .news__list .item-box .img-box {
        width: 400px;
    }
    .news__list .item-box .img-box div {
        height: 246px;
    }
    .news__list .item-box .text-box {
        width: 520px;
        margin-right: 0;
    }
    .news__list .item-box .text-box .text {
        margin: 10px 0;
    }
}
@media (max-width: 991px) {
    .news__list .item-box .img-box {
        width: 350px;
    }
    .news__list .item-box .img-box div {
        height: 215px;
    }
    .news__list .item-box .text-box {
        width: 350px;
        padding-top: 0;
    }
    .news__list .item-box .text-box .title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .news__list .item-box .text-box .time {
        font-size: 14px;
    }
    .news__list .item-box .text-box .text {
        line-height: 1.75;
        margin: 8px 0;
    }
    .news__list .item-box .text-box .more {
        width: 125px;
        height: 40px;
        line-height: 40px;
        margin-top: 6px;
    }
}
@media (max-width: 767px) {
    .news__list .item-box {
        width: 90%;
        margin: auto;
    }
    .news__list .item-box .img-box {
        width: 100%;
        float: none;
    }
    .news__list .item-box .img-box div {
        height: auto;
    }
    .news__list .item-box .img-box img {
        width: 100%;
        height: auto;
    }
    .news__list .item-box .text-box {
        padding-top: 15px;
        width: 100%;
        float: none;
    }

}
/*========================== min-nav & breadcrumb ==========================*/
.min-nav {
    padding: 60px 15px 0 15px;
    margin-bottom: 20px;
    border-top: 1px solid #dbdbdb;
}
.min-nav .back-btn {
    display: inline-block;
    width: 185px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    background: #333;
    margin-top: -10px;
}
.min-nav .back-btn .line {
    display: inline-block;
    width: 13px;
    height: 1px;
    margin-right: 14px;
    background: #fff;
    vertical-align: middle;
}
.min-nav2 .container {
    padding: 15px;
    max-width: 1200px;
    border-bottom: 1px dashed #dbdbdb;
}
.breadcrumb {
    font-size: 0;
    padding: 7px 0;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
}
.breadcrumb li {
    display: inline-block;
    font-size: 13px;
    line-height: 26px;
    color: #666;
}
.breadcrumb-location {
    padding-left: 28px;
    background: url("../images/location.png") no-repeat left center;
}
.breadcrumb-item + .breadcrumb-item:before {
    content: ">";
    margin: 0 4px;
}
.breadcrumb-item a:hover, .breadcrumb-item:last-child {
    color: #1e1e1e;
}
@media (max-width: 991px) {
    .min-nav {
        padding-top: 50px;
    }
}
@media (max-width: 767px) {
    .min-nav {
        padding-top: 35px;
    }
    .min-nav .back-btn {
        width: 160px;
        height: 38px;
        line-height: 38px;
        margin-top: 0;
    }
    .min-nav2 .container {
        padding: 6px 15px;
    }
}
/*========================== newsv ==========================*/
.newsv {
    padding: 60px 0;
}
.newsv .container {
    max-width: 1200px;
}
.newsv__detail {
    border-bottom: 1px dashed #e2e2e2;
    padding: 0 25px 40px 25px;
}
.newsv__detail .tit {
    text-align: center;
    margin-bottom: 40px;
}
.newsv__detail .tit h3 {
    font-size: 22px;
    color: #3d3d3d;
    margin-bottom: 8px;
}
.newsv__detail .tit span {
    font-size: 14px;
    color: #959595;
}
.newsv__detail .text {
    font-size: 14px;
    line-height: 2;
    color: #7d7d7d;
}
.newsv__detail img {
    max-width: 100%;
}
.pages2 {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #767676;
    text-align: center;
    margin: 15px 0;
}
.pages2 a {
    height: 40px;
    display: inline-block;
    padding: 0 15px;
}
.pages2 a.prev {
    float: left;
}
.pages2 a.next {
    float: right;
}
.pages2 a.back {
    background: url('../images/back.png') no-repeat left center;
    text-indent: 20px;
}
.pages2 a:hover {
    color: #1e1e1e;
}
@media (max-width: 991px) {
    .newsv {
        padding: 50px 0;
    }
    .newsv__detail .tit {
        margin-bottom: 30px;
    }
    .newsv__detail .tit h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .pages2 {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .newsv {
        padding: 45px 0;
    }
    .newsv__detail .tit {
        margin-bottom: 20px;
    }
    .newsv__detail .tit h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .pages2 {
        font-size: 14px;
        margin: 10px 0;
    }
}
/*========================== pro ==========================*/
.pro {
    padding: 30px 0;
}
.pro .container {
    max-width: 1280px;
    padding: 0 15px;
}
.pro__nav {
    width: 225px;
    padding: 15px 25px;
    font-size: 15px;
    line-height: 2;
    color: #8e8e8e;
    background: #fbfbfb;
}
.pro__nav-toggle {
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    font-size: 16px;
    color: #fff;
    background: #424242;
    position: relative;
}
.pro__nav-toggle .icon-angle-circle {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/angle-circle.png") no-repeat center center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
}
.pro__nav li {
    border-bottom: 1px solid #dcdcdc;
}
.pro__nav li a {
    display: block;
    padding: 12px 0 12px 20px;
    position: relative;
}
.pro__nav li.on a, .pro__nav li a:hover {
    color: #535353;
}
.pro__nav li.on a:before, .pro__nav li a:hover:before {
    content: "";
    display: block;
    width: 3px;
    height: 15px;
    background: #535353;
    position: absolute;
    left: 0;
    top: 20px;
}
.pro__main {
    margin-right: 15px;
}
.pro__list {
    width: 990px;
    margin: 15px auto;
}
.pro__list .item-box {
    padding: 10px;
}
.pro__list .item-box a {
    display: block;
}
.pro__list .item-box .img-box2 {
    width: 100%;
    height: 235px;
}
.pro__list .item-box .img-box2 img {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.pro__list .item-box .caption {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    text-align: center;
    color: #777;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pro__list .item-box a:hover {
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.pro__list .item-box a:hover .caption {
    color: #2d2d2d;
}
.pro__list .item-box a:hover .img-box2 img {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
@media (max-width: 1299px) {
    .pro .container {
        max-width: 1200px;
    }
    .pro__main {
        margin-right: 0;
    }
    .pro__nav {
        width: 200px;
        padding: 15px;
    }
    .pro__list {
        width: 930px;
    }
    .pro__list .item-box .img-box2 {
        height: 220px;
    }
}
@media (max-width: 1199px) {
    .pro .container {
        max-width: 990px;
    }
    .pro__list {
        width: 720px;
    }
    .pro__list .item-box .img-box2 {
        height: 166px;
    }
    .pro__list .item-box .caption {
        height: 55px;
        line-height: 55px;
    }
}
@media (max-width: 991px) {
    .pro .container {
        max-width: 768px;
    }
    .pro__nav {
        font-size: 14px;
    }
    .pro__list {
        width: 500px;
    }
    .pro__list .item-box .img-box2 {
        height: 174px;
    }
    .pro__list .item-box .caption {
        height: 50px;
        line-height: 50px;
        font-size: 14px;

    }
}
@media (max-width: 767px) {
    .pro .container {
        max-width: 576px;
    }
    .pro__aside {
       padding: 10px 0;
    }
    .pro__nav {
        display: none;
        width: 100%;
        padding: 0;
    }
    .pro__nav li a {
        padding: 12px 20px 12px 20px;
    }
    .pro__nav li.on a:before, .pro__nav li a:hover:before {
        content: none;
        display: none;
    }
    .pro__nav li.on a, .pro__nav li a:hover {
        color: #fff;
        background: #b5b5b5;
    }
    .pro__list {
        width: 100%;
    }
    .pro__list .item-box .img-box2 {
        height: 192px;
    }
    .pro__list .item-box .caption {
        height: 40px;
        line-height: 40px;
    }
}
@media (max-width: 575px) {
    .pro__list .item-box .img-box2 {
        height: 130px;
    }
}
@media (max-width: 400px) {
    .pro__list .item-box .img-box2 {
        height: 115px;
    }
}
@media (max-width: 350px) {
    .pro__list .item-box .img-box2 {
        height: 95px;
    }
}
/*========================== prov ==========================*/
.prov {
   padding: 0 15px;
}
.prov__slide {
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}
.prov__slide .bd {
    width: 100%;
    text-align: center;
    background: #f3f3f3;
    padding: 25px 0;
}
.prov__slide .bd .img-box2 {
    width: 745px;
    height: 535px;
    margin: auto;
}
.prov__slide .hd {
    width: 330px;
    margin: 30px auto;
    overflow: hidden;
}
.prov__slide .hd ul li {
    width: 160px;
    height: 115px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}
.prov__slide .hd ul li .img-box2 {
    width: 100%;
    height: 100%;
}
.prov__slide .hd ul li.on:after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    border: 4px solid #e46a03;
}
.prov__slide .sPrev, .prov__slide .sNext {
    display: inline-block;
    width: 50px;
    height: 80px;
    line-height: 80px;
    border: 1px solid #959595;
    text-align: center;
    font-family: '宋体', serif;
    font-size: 28px;
    font-weight: 600;
    color: #959595;
    background: #f3f3f3;
    cursor: pointer;
    position: absolute;
    top: 30%;
}
.prov__slide .sPrev {
    left: 85px;
}
.prov__slide .sNext {
    right: 85px;
}
.prov__slide .sPrev:hover, .prov__slide .sNext:hover {
    background: #ce4224;
    border-color: #ce4224;
    color: #fff;
}
.prov__info {
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}
.prov__info .name {
    font-size: 24px;
    color: #4c4c4c;
    margin-bottom: 8px;
}
.prov__info .series {
    font-size: 16px;
    color: #8f8f8f;
    margin-bottom: 40px;
}
.prov__info .text {
    font-size: 15px;
    line-height: 2;
    color: #767676;
    margin-bottom: 15px;

}
.p-text h6{ font-size:15px; font-weight:bold; padding-bottom:5px; border-bottom:1px solid #7f7f7f; color:#333; text-align:left; margin-bottom:10px;}
.p-text h6 span{font-weight:normal; font-family:font-family: "Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",Arial,sans-serif;
font-weight: 300;
}

@media (max-width: 1199px) {
    .prov__slide .bd .img-box2 {
        width: 700px;
        height: 502px;
    }
    .prov__slide .sPrev {
        left: 40px;
    }
    .prov__slide .sNext {
        right: 40px;
    }
}
@media (max-width: 991px) {
    .prov__slide .bd .img-box2 {
        width: 600px;
        height: 430px;
    }
    .prov__slide .sPrev, .prov__slide .sNext {
        width: 42px;
        height: 70px;
        line-height: 70px;
    }
    .prov__slide .sPrev {
        left: 15px;
    }
    .prov__slide .sNext {
        right: 15px;
    }
    .prov__info {
        padding: 30px 0;
    }
    .prov__info .name {
        font-size: 20px;
        margin-bottom: 6px;
    }
    .prov__info .series {
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .prov__slide .bd {
        padding: 15px;
    }
    .prov__slide .bd .img-box2 {
        width: 100%;
        height: 366px;
    }
    .prov__slide .hd {
        width: 290px;
        margin: 20px auto;
        overflow: hidden;
    }
    .prov__slide .hd ul li {
        width: 140px;
        height: 100px;
        margin-right: 10px;
        cursor: pointer;
        position: relative;
    }
    .prov__info .name {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .prov__info .series {
        font-size: 15px;
    }
    .prov__info .text {
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .prov__slide .bd .img-box2 {
        height: 364px;
    }
    .prov__slide .hd {
        width: 280px;
        margin: 20px auto;
        overflow: hidden;
    }
    .prov__slide .hd ul li {
        width: 115px;
        height: 90px;
        margin-right: 10px;
        cursor: pointer;
        position: relative;
    }
    .prov__slide .sPrev, .prov__slide .sNext {
        width: 30px;
        height: 48px;
        line-height: 48px;
        font-size: 22px;
    }
}
@media (max-width: 400px) {
    .prov__slide .bd .img-box2 {
        height: 225px;
    }
}
@media (max-width: 350px) {
    .prov__slide .bd .img-box2 {
        height: 185px;
    }
}
/*========================== other-pro ==========================*/
.other-pro {
    padding: 30px 10px;
    margin-top: 10px;
}
.other-pro__title {
    font-size: 20px;
    color: #4c4c4c;
    margin-bottom: 30px;
}
.other-pro__list {
    text-align: center;
    margin-left: -10px;
    margin-right: -10px;
}
.other-pro__list .item-box {
    display: inline-block;
    width: 385px;
    margin-bottom: 25px;
}
.other-pro__list .item-box .img-box {
    width: 100%;
}
.other-pro__list .item-box .img-box div {
    height: 260px;
}
.other-pro__list .item-box .caption {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    text-align: center;
    color: #777;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.other-pro__list .item-box:hover {
    -moz-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1199px) {
    .other-pro {
        padding: 30px 15px;
    }
    .other-pro__list {
        margin-left: 0;
        margin-right: 0;
    }
    .other-pro__list .item-box {
        width: 305px;
    }
    .other-pro__list .item-box .img-box div {
        height: 205px;
    }
    .other-pro__list .item-box .caption {
        height: 55px;
        line-height: 55px;
    }
}
@media (max-width: 991px) {
    .other-pro__title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .other-pro__list .item-box {
        width: 235px;
    }
    .other-pro__list .item-box .img-box div {
        height: 160px;
    }
    .other-pro__list .item-box .caption {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }

}
@media (max-width: 767px) {
    .other-pro__title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .other-pro__list .item-box {
        width: 260px;
    }
    .other-pro__list .item-box .img-box div {
        height: 175px;
    }
    .other-pro__list .item-box .caption {
        height: 40px;
        line-height: 40px;
    }
}
@media (max-width: 575px) {
    .other-pro__list .item-box {
        width: 96%;
        margin-bottom: 15px;
    }
    .other-pro__list .item-box .img-box div {
        height: 125px;
    }
}
@media (max-width: 400px) {
    .other-pro__list .item-box {
        width: 96%;
    }
    .other-pro__list .item-box .img-box div {
        height: 112px;
    }
}
@media (max-width: 350px) {
    .other-pro__list .item-box .img-box div {
        height: 95px;
    }
}
